53c81e
@@ -81,6 +81,16 @@
public final class IOConverter {
                 public int read() throws IOException {
                     return reader.read();
                 }
+                
+                @Override
+                public void close() throws IOException {
+                    reader.close();
+                }
+                
+                @Override
+                public void reset() throws IOException {
+                    reader.reset();
+                }
             };
         } else {
             return IOHelper.buffered(new FileInputStream(file));
